﻿:root {
    --main-color: #335da3;
}

body{
	font-size: 14px;
	color: #111111;
	font-family: "微软雅黑";
}
*{
	box-sizing: border-box;
}

a{
    color: #111111;
}
a:hover{
    color: #111111;
}

.inner{
    width: 1200px;
    margin: 0 auto;
    position: relative;
}



.page-banner{
    position: relative;
}
.page-banner img{
    width: 100%;
}
.page-banner .banner-content{
    position: absolute;
    top: 55%;
    left: 50%;
    width: 92%;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
}
.page-banner .banner-content .title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}
.page-banner .banner-content .en{
    font-size: 18px;
    opacity: 0.5;
}




.header{
    /* height: 80px; */
}
.header .real-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    background-color: rgba(255,255,255,0.08);
    transition: all .3s ease;
}
.header:hover .real-header,
.header.high .real-header{
    background-color: #fff;
}
.header.high .real-header{
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.header .real-header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 96.25%;
    height: 100%;
}
.header .logo{
    position: relative;
    width: 276px;
}
.header .logo img{
    width: 100%;
    opacity: 1;
    transition: all .3s ease;
}
.header .logo .img1{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}
.header.high .logo .img2,
.header:hover .logo .img2{
    opacity: 0;
}
.header.high .logo .img1,
.header:hover .logo .img1{
    opacity: 1;
}
.header .navigation{
    height: 100%;
}
.header .navigation ul{
    display: flex;
    height: 100%;
}
.header .navigation ul li{
    position: relative;
    margin: 0 2.5vw;
}
.header .navigation ul li .nav{
    display: block;
    line-height: 76px;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 4px solid rgba(255,255,255,0);
    transition: all .3s ease;
}
.header .navigation ul li:hover .nav,
.header .navigation ul li.active .nav{
    color: #fff;
    border-bottom-color: #fff;
}
.header.high .navigation ul li .nav,
.header:hover .navigation ul li .nav{
    color: #666666;
}
.header.high .navigation ul li:hover .nav,
.header.high .navigation ul li.active .nav,
.header:hover .navigation ul li:hover .nav,
.header:hover .navigation ul li.active .nav{
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}
.header .navigation ul li .head-pop{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    min-height: 348px;
    padding: 36px 0 64px 36px;
    background-color: #f8f8f8;
    display: none;
}
.header .navigation ul li:hover .head-pop{
    display: flex;
}
.header .navigation ul li .head-pop .pop-l{
    width: 26vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .navigation ul li .head-pop .pop-l .text{
    padding-bottom: 30px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 30px;
}
.header .navigation ul li .head-pop .pop-l .title{
    font-size: 24px;
    margin-bottom: 24px;
}
.header .navigation ul li .head-pop .pop-l .content{
    line-height: 24px;
    color: #666666;
}
.header .navigation ul li .head-pop .pop-l .btn{
    display: flex;
    align-items: center;
    font-size: 18px;
    white-space: nowrap;
}
.header .navigation ul li .head-pop .pop-l .btn img{
    width: 42px;
    margin-left: 9px;
}
.header .navigation ul li .head-pop .pop-r{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.header .navigation ul li .head-pop .pop-r .item{
    width: 17.5%;
    border-bottom: 2px solid rgba(0,0,0,0);
}
.header .navigation ul li .head-pop .pop-r .item .item-img{
    height: 160px;
    background: no-repeat center center / cover;
}
.header .navigation ul li .head-pop .pop-r .item .item-title{
    line-height: 78px;
    color: #666666;
    text-align: center;
}
.header .navigation ul li .head-pop .pop-r .item:hover,
.header .navigation ul li .head-pop .pop-r .item.active{
    border-bottom-color: var(--main-color);
}
.header .navigation ul li .head-pop .pop-r .item:hover .item-title{
    color: var(--main-color);
}
.header .contact{
    display: flex;
    align-items: center;
}
.header .contact .img{
    position: relative;
    width: 24px;
    margin-right: 10px;
}
.header .contact .img img{
    height: 100%;
    opacity: 1;
    transition: all .3s ease;
}
.header .contact .img_normal{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}
.header .contact b{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.header.high .contact .img_normal,
.header:hover .contact .img_normal{
    opacity: 0;
}
.header.high .contact .img_white,
.header:hover .contact .img_white{
    opacity: 1;
}
.header.high .contact b,
.header:hover .contact b{
    color: #111111;
}





.mobile-header{
    height: 12vw;
    display: none;
}
.mobile-header .real-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 12vw;
    background-color: #0c5ed1;
    z-index: 4;
}
.mobile-header.high .real-header{
}
.mobile-header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.mobile-header .logo{
    height: 40%;
}
.mobile-header .logo img{
    display: none;
    height: 100%;
}
.mobile-header .logo .img2{
    display: block;
    height: 100%;
}
.mobile-header .menu{
    position: relative;
    width: 6.4vw;
    height: 6.4vw;
    overflow: hidden;
}
.mobile-header .menu span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.mobile-header .menu span:nth-child(1){
    top: 0;
    transform: rotate(0deg);
    transition: all .3s ease 0s;
}
.mobile-header .menu span:nth-child(2){
    top: 48%;
    transform: rotate(0deg);
    transition: all .3s ease 0s;
}
.mobile-header .menu span:nth-child(3){
    top: 89%;
    transition: all .3s ease 0s;
}
.mobile-header.active .menu span:nth-child(1){
    top: 50%;
    transform: rotate(45deg);
}
.mobile-header.active .menu span:nth-child(2){
    top: 50%;
    transform: rotate(-45deg);
}
.mobile-header.active .menu span:nth-child(3){
    top: 105%;
}
.mobile-header .navigation{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 12vw;
    transform: translate(0,-120%);
    background-color: #fff;
    z-index: 3;
    transition: all .3s linear 0s;
}
.mobile-header.active .navigation{
    transform: translate(0,0%);
}
.mobile-header .navigation ul li{
    border-bottom: 1px solid #eee;
}
.mobile-header .navigation ul li .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 4.6vw;
    padding: 3.2vw;
}
.mobile-header .navigation ul li .nav img{
    height: 5vw;
}
.mobile-header .navigation ul li.active .nav{
    color: #1c7bff;
}
.mobile-header .navigation ul li.fold .nav img{
    transform: rotate(180deg);
}
.mobile-header .navigation ul li .nav-box{
    padding: 2vw 6vw;
    display: none;
}
.mobile-header .navigation ul li.fold .nav-box{
    display: block;
}
.mobile-header .navigation ul li .nav-box .box{
    padding-bottom: 2vw;
}
.mobile-header .navigation ul li .nav-box .box .box-t{
    display: flex;
    align-items: center;
    font-size: 4vw;
    margin-bottom: 2vw;
}
.mobile-header .navigation ul li .nav-box .box .box-t img{
    width: 4vw;
    height: 4vw;
    margin-right: 2vw;
}
.mobile-header .navigation ul li .nav-box .box .list{
    padding-left: 6vw;
}
.mobile-header .navigation ul li .nav-box .box .list .item{
    display: flex;
    white-space: nowrap;
    padding: 1.2vw 0;
    border-bottom: 1px solid #eee;
}
.mobile-header .navigation ul li .nav-box .box .list .item:last-child{
    border-bottom-width: 0;
}
.mobile-header .navigation ul li .nav-box .box .list .item .item-t{
    font-size: 3.6vw;
    margin-right: 4vw;
}
.mobile-header .navigation ul li .nav-box .box .list .item .lv4{
    display: flex;
    flex-wrap: wrap;
}
.mobile-header .navigation ul li .nav-box .box .list .item .lv4 .lv4-nav{
    padding-top: 0.4vw;
    margin-right: 4vw;
    margin-bottom: 2vw;
}
.mobile-header .navigation ul li .nav-box .box.active .box-t,
.mobile-header .navigation ul li .nav-box .box .list .item.active{
    color: #0055cc;
}
.mobile-header .navigation ul li ol{
    padding: 0 6vw;
    display: none;
}
.mobile-header .navigation ul li.fold ol{
    display: block;
}
.mobile-header .navigation ul li ol li:last-child{
    border-bottom-width: 0;
}
.mobile-header .navigation ul li ol a{
    display: block;
    line-height: 8vw;
}
.mobile-header .navigation ul li ol li.active a{
    color: #1568dc;
}



.bread-crumbs .inner{
    box-shadow: 0 -2px 0 0 #dee2e9 inset;
}
.bread-crumbs .text{
    line-height: 64px;
}
.bread-crumbs .text img{
    display: inline-block;
    width: 12px;
    height: 14px;
    margin-right: 9px;
    vertical-align: middle;
}
.bread-crumbs .text span,
.bread-crumbs .text a{
    color: #465871;
    vertical-align: middle;
}
.bread-crumbs .text span:last-child,
.bread-crumbs .text a:last-child{
    color: #8797af;
}
.bread-crumbs .page-tabs{
    display: flex;
    align-items: center;
    justify-content: center;
}
.bread-crumbs .page-tabs::before,
.bread-crumbs .page-tabs::after{
    content: '';
}
.bread-crumbs .page-tabs .tab{
    color: #465871;
    font-size: 18px;
    padding: 24px 0;
    margin: 0 57px;
    border-bottom: 2px solid rgba(0,85,204,0);
}
.bread-crumbs .page-tabs .tab.active{
    color: #0055cc;
    border-bottom-color: rgba(0,85,204,1);
}




.footer{
    background: url(../images/footer_bg.jpg) no-repeat center center / cover;
}
.footer .footer-top{
    padding: 48px 0 40px;
    border-bottom: 1px solid #363c45;
    margin-bottom: 64px;
}
.footer .footer-center{
    padding-bottom: 64px;
}
.footer .footer-top .inner,
.footer .footer-center .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .logo{
    display: flex;
    align-items: center;
    width: 158px;
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
}
.footer .logo img{
    width: 100%;
}
.footer .logo .line{
    flex-shrink: 0;
    width: 1px;
    height: 34px;
    background-color: #999999;
    margin: 0 28px 0 32px;
}
.footer .footer-line{
    flex-shrink: 0;
    width: 1px;
    height: 88%;
    background-color: rgba(255,255,255,0.2);
}
.footer .ewm-box{
    display: flex;
}
.footer .ewm-box .ewm{
    text-align: center;
    padding: 18px 18px 22px;
    background-color: #fff;
    margin-right: 64px;
    border-radius: 10px;
}
.footer .ewm-box .ewm:last-child{
    margin-right: 0;
}
.footer .ewm-box .ewm img{
    width: 104px;
    height: 104px;
    margin: 0 auto 22px;
}
.footer .msg{
    display: flex;
    align-items: center;
    color: #cccccc;
    margin-bottom: 32px;
}
.footer .msg:last-child{
    margin-bottom: 0;
}
.footer .msg .icon{
    margin-right: 12px;
}
.footer .msg .icon img{
    width: 16px;
}
.footer .footer-bottom{
    height: 64px;
    color: #666666;
    background-color: #01050c;
}
.footer .footer-bottom .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.footer .footer-bottom .left{
    display: flex;
    align-items: center;
}
.footer .footer-bottom .left p{
    margin-right: 70px;
}
.footer .footer-bottom .left p:last-child{
    margin-right: 0;
}
@media screen and (max-width: 1380px){
    .footer .footer-top{
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 1230px){
    .footer .footer-top{
        margin-bottom: 12vw;
    }
}
@media screen and (max-width: 950px){
    .footer .footer-top{
        padding: 4.8vw 0;
        margin-bottom: 6.4vw;
    }
    .footer .logo{
        width: 21.0667vw;
        font-size: 3.2vw;
    }
    .footer .logo .line{
        height: 4vw;
        margin: 0 3.2vw;
    }
    .footer .footer-center{
        padding-bottom: 6vw;
    }
    .footer .footer-center .inner{
        display: block;
    }
    .footer .shuidi{
        width: 6vw;
    }
    .footer .ewm-box{
        justify-content: space-between;
        margin-bottom: 4vw;
    }
    .footer .ewm-box .ewm{
        padding: 2vw;
        margin-right: 2vw;
        border-radius: 1.6vw;
    }
    .footer .ewm-box .ewm img{
        width: 24vw;
        height: 24vw;
        margin-bottom: 2vw;
    }
    .footer .msg{
        margin-bottom: 2vw;
    }
    .footer .msg .icon{
        margin-right: 1.6vw;
    }
    .footer .msg .icon img{
        width: 3vw;
    }
    .footer .footer-bottom{
        height: 14vw;
    }
    .footer .footer-bottom .left p{
        margin-right: 4vw;
    }
}




.page-right-tools{
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.page-right-tools.active{
    opacity: 1;
    pointer-events: auto;
}
.page-right-tools .real-tools{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.page-right-tools .item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #1c7bff;
    margin-bottom: 8px;
    border-radius: 4px 0 0 4px;
}
.page-right-tools .item:hover{
    background-color: #fff;
}
.page-right-tools .item .icon{
    width: 24px;
    height: 24px;
}
.page-right-tools .item .icon img{
    width: 100%;
    height: 100%;
}
.page-right-tools .item .icon .icon2{
    display: none;
}
.page-right-tools .item:hover .icon .icon1{
    display: none;
}
.page-right-tools .item:hover .icon .icon2{
    display: block;
}
.page-right-tools .item .item-in{
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translate(0,-50%);
    display: none;
}
.page-right-tools .item:hover .item-in{
    display: block;
}
.page-right-tools .item .item-in .content{
    position: relative;
    color: #0055cc;
    line-height: 56px;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
    padding: 0 25px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #eeeeee;
}
.page-right-tools .item .item-in .content::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -5.5px;
    width: 11px;
    height: 11px;
    background-color: #fff;
    margin-top: -5.5px;
    transform: rotate(45deg);
}
.page-right-tools .item.contact{
    padding: 0 14px;
}
.page-right-tools .item.contact:hover .icon{
    margin-right: 12px;
}
.page-right-tools .item.contact .content{
    max-width: 0;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
}
.page-right-tools .item.contact:hover{
    width: auto;
}
.page-right-tools .item.contact:hover .content{
    max-width: 110px;
    transition: all .3s linear;
}





.pop-up-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
}
.pop-up-box .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.pop-up-box .pop-cont{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    background-color: #fff;
    transform: translate(-50%,-50%);
    border-radius: 10px;
}
.pop-up-box .close{
    position: absolute;
    bottom: -60px;
    left: 50%;
    width: 40px;
    height: 40px;
    background: url(../images/close.png) no-repeat center center / 100% 100%;
    cursor: pointer;
    transform: translate(-50%, 0);
}
.pop-up-box .pop-in{
    max-height: 75vh;
    overflow: auto;
}





.yuyue-pop .pop-cont{
    width: 480px;
    max-width: 92%;
    padding: 40px 30px;
    background: url(../images/yuyue_pop_bg.jpg) no-repeat center top / contain #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.yuyue-pop .title{
    color: #0055cc;
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
}
.yuyue-pop form{
    display: block;
}
.yuyue-pop form input{
    display: block;
    width: 100%;
    height: 48px;
    padding-left: 18px;
    margin-bottom: 16px;
    border-radius: 4px;
    border: 1px solid #eeeeee;
}
.yuyue-pop form .vcode{
    display: flex;
    margin-bottom: 16px;
}
.yuyue-pop form .vcode input{
    margin-bottom: 0px;
}
.yuyue-pop form .vcode button{
    flex-shrink: 0;
    width: 120px;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-width: 0;
    background-color: #0055cc;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
}
.yuyue-pop form textarea{
    width: 100%;
    height: 120px;
    padding: 15px 16px;
    border: 1px solid #eeeeee;
    margin-bottom: 40px;
    border-radius: 4px;
}
.yuyue-pop form .submit{
    display: block;
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    background-color: #0055cc;
    border-width: 0;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 750px){
    .yuyue-pop .pop-cont{
        width: 92%;
        padding: 4vw;
        border-radius: 1.6vw;
    }
    .yuyue-pop .title{
        font-size: 5.4vw;
        margin-bottom: 4vw;
    }
    .yuyue-pop form input{
        height: 10vw;
        padding-left: 2.4vw;
        margin-bottom: 2vw;
        border-radius: 1.2vw;
    }
    .yuyue-pop form .vcode{
        margin-bottom: 2vw;
    }
    .yuyue-pop form .vcode button{
        width: 24vw;
        line-height: 10vw;
        font-size: 3.2vw;
        margin-left: 1.6vw;
        border-radius: 1.2vw;
    }
    .yuyue-pop form textarea{
        width: 100%;
        height: 24vw;
        padding: 2vw;
        margin-bottom: 4vw;
        border-radius: 1.2vw;
    }
    .yuyue-pop form .submit{
        width: 100%;
        height: 10vw;
        font-size: 4vw;
        border-radius: 1.2vw;
    }
}




@media screen and (max-width: 1480px){
    .header .navigation ul li{
        margin: 0 32px;
    }
}
@media screen and (max-width: 1280px){
    .inner{
        width: 92%;
    }
}
@media screen and (max-width: 1030px){
    .header .navigation ul li{
        margin: 0 24px;
    }
}
@media screen and (max-width: 950px){
    body{
        font-size: 3.2vw;
    }

    .page-banner img{
        height: 59vw;
        object-fit: cover;
    }
    .page-banner .banner-content .title{
        font-size: 4vw;
        margin-bottom: 2vw;
    }
    .page-banner .banner-content .en{
        font-size: 3.2vw;
    }

    
    .header{
        display: none;
    }
    .mobile-header{
        display: block;
    }



    .bread-crumbs .text{
        line-height: 10vw;
    }
    .bread-crumbs .page-tabs{
        justify-content: space-between;
    }
    .bread-crumbs .page-tabs .tab{
        font-size: 3.2vw;
        padding: 3.2vw 0;
        margin: 0;
    }


    .footer{
        background-size: auto 115%;
    }



    .page-right-tools{
        position: static;
        height: 45px;
        display: none !important;
    }
    .page-right-tools .real-tools{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
    }
    .page-right-tools .item{
        flex: 1;
        width: auto;
        height: 45px;
        border-right: 1px solid #fff;
    }
    .page-right-tools .item:last-child{
        border-right-width: 0;
    }
    .page-right-tools .item .icon{
        width: 22.5px;
        height: 22.5px;
    }
    .page-right-tools .item-in{
        display: none !important;
    }
    /* .page-right-tools .item .item-in .content{
        line-height: 12vw;
        font-size: 3.6vw;
        padding: 0 3.2vw;
        border-radius: 1.2vw;
    }
    .page-right-tools .item.contact .item-in .content{
        font-size: 4.8vw;
    } */
}